home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
JCSM Shareware Collection 1995 September
/
JCSM Shareware Collection (September 30th 1995 Author to Vendor Edition) (JCS Distribution).ISO
/
writgaid
/
12530a01.ziv
/
SPLIT_FL.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-04-20
|
2KB
|
79 lines
cls
echo off
if A == %1 goto driveok
if a == %1 goto driveok
if B == %1 goto driveok
if b == %1 goto driveok
:startup
echo .
echo . Batch file to split RMS-III into two distribution disks.
echo .
echo . From the 720kb dist. disk - make two 360kb dist. disks.
echo .
echo . Have two 360kb disks formated. Label RMSIII32D#1 & RMSIII32D#2.
echo .
echo .
echo . Restart this batch file with a target drive spec (A or B)
echo . following the file name, e.g., for target drive = b,
echo . enter... split-fl b
echo .
goto end1
:driveok
echo .
echo . Ready to prepare two distribution disks for RMS-III
echo .
echo . Have two 360kb disks formated.
echo .
echo .
echo . Mount new dist. disk #1 in target drive = %1:
echo .
echo . ready to start... press CTRL-BREAK to terminate.
pause
echo .
copy show.* %1:\*.*
copy install.exe %1:\*.*
copy install?.dat %1:\*.*
copy readme??.* %1:\*.*
copy whatsnew.doc %1:\*.*
copy rmszip1.exe %1:\*.*
copy rmszip7.exe %1:\*.*
copy mem?????.* %1:\*.*
copy order.doc %1:\*.*
copy summary.doc %1:\*.*
copy license.doc %1:\*.*
copy vendor.doc %1:\*.*
copy inst_rms.tst %1:\*.*
copy file_id.diz %1:\*.*
echo .
echo . Disk #1 complete
echo .
echo . Mount Distribution Disk #2 in drive = %1:
echo .
pause
echo .
copy install1.dat %1:\*.*
copy install2.dat %1:\*.*
copy install3.dat %1:\*.*
copy install4.dat %1:\*.*
copy rmszip2.exe %1:\*.*
copy rmszip3.exe %1:\*.*
copy rmszip4.exe %1:\*.*
copy rmszip5.exe %1:\*.*
copy rmszip6.exe %1:\*.*
copy file_id.diz %1:\*.*
echo .
echo . Dist. Disk #2 complete
echo .
echo . You should change the disk spec in the FILE_ID.DIZ from
echo . (1 of 1) to (1 of 2) and (2 of 2) respectively.
echo .
pause
:end2
echo . This completes the disk restructuring.
echo .
echo . Disk contents can be checked against packing list in VENDOR.DOC file.
echo .
pause
:end1